home *** CD-ROM | disk | FTP | other *** search
/ The CICA Windows Explosion! / The CICA Windows Explosion! - Disc 2.iso / demo / medowl.zip / KEYS.DOC < prev    next >
Text File  |  1994-08-15  |  4KB  |  61 lines

  1. Default Key Bindings for the Magma Editor DLL  (Early Experience Version 1.0)
  2. -----------------------------------------------------------------------------
  3.  
  4. Key             Message                 Function
  5.  
  6. HOME            ME_MOVEBOL              Move cursor to start of line
  7. CTRL+HOME       ME_MOVETOPOFBUFFER      Move cursor to first char in buffer
  8. END             ME_MOVEEOL              Move cursor to end of line
  9. CTRL+END        ME_MOVEBOTOFBUFFER      Move cursor to last char in buffer
  10. PGUP            ME_MOVEPREVPAGE         Scroll up one page
  11. CTRL+PGUP       ME_MOVEPREVPARA         Move cursor to previous paragraph
  12. PGDN            ME_MOVENEXTPAGE         Scroll down one page
  13. CTRL+PGDN       ME_MOVENEXTPARA         Move cursor to next paragraph
  14. LEFT            ME_MOVELEFT             Move left one character
  15. CTRL+LEFT       ME_MOVEPREVWORD         Move to the previous word
  16. RIGHT           ME_MOVERIGHT            Move right one character
  17. CTRL+RIGHT      ME_MOVENEXTWORD         Move to the next word
  18. UP              ME_MOVEUP               Move cursor up one line
  19. CTRL+UP         ME_MOVETOPOFWINDOW      Move to fist char in window
  20. DOWN            ME_MOVEDOWN             Move cursor down one line
  21. CTRL+DOWN       ME_MOVEBOTOFWINDOW      Move to the bottom right corner
  22.  
  23. INSERT          ME_TOGGLEINSERT         Toggle insert/overstrike mode
  24. DELETE          ME_DELCHAR              Delete the current character
  25. SH+DELETE       ME_DELWORD              Delete the current word
  26. CTRL_DELETE     ME_DELLINE              Deletes the current selection
  27. TAB             ME_TAB                  Indent (if lines marked)
  28. SH+TAB          ME_BACKTAB              Undent (if lines marked)
  29. BACKSPACE       ME_BACKSPACE            Backspace over prev character
  30.  
  31. SH+F1           ME_HELPONWORD           Gets help for word under cursor
  32. F2              ME_INSERTLINE           Insert one blank line
  33. SH+F2           ME_APPENDLINE           Append one blank line
  34. F3              ME_KEYMACPLAY           Replay keyboard macro
  35. SH+F3           ME_PROGFROMKEYMAC       Gen program from key macro
  36. F4              ME_KEYMACDEFINE         Record/Stop a keyboard macro
  37. F5              ME_FSEARCH              Search
  38. CTRL+F5         ME_SEARCHAGAIN          Repeat last search
  39. F6              ME_FREPLACE             Replace
  40. CTRL+F6         ME_REPLACEAGAIN         Repeat last replacement
  41. F7              ME_STREAMMARK           Start/Stop stream selection
  42. SH+F7           ME_RECTMARK             Start/Stop column selection
  43. F8              ME_CUT                  Cut into the clipboard
  44. SH+F8           ME_CUTAPPEND            Cut and append to prev text
  45. CTRL+F8         ME_RESETMARK            Clear selections
  46. F9              ME_PASTE                Paste contents of clipboard
  47. SH+F9           ME_COPY                 Copy marked text
  48. CTRL+F9         ME_DUPLINE              Duplicate current line
  49.  
  50. CTRL+'A'        ME_REDO                 Redo the last undo
  51. CTRL+'B'        ME_MATCHBRACE           Find the matching brace
  52. CTRL+'C'        ME_COPY                 Copy marked text
  53. CTRL+'D'        ME_DELLINE              Delete the current line
  54. CTRL+'K'        ME_DELEOL               Delete until end of line
  55. CTRL+'L'        ME_MARKLINE             Select current line
  56. CTRL+'R'        ME_MARKLINERANGE        Select range of lines
  57. CTRL+'V'        ME_PASTE                Paste contents of clipboard
  58. CTRL+'X'        ME_CUT                  Cut into the clipboard
  59. CTRL+'Z'        ME_UNDO                 Undo last editing operation
  60.  
  61.